home *** CD-ROM | disk | FTP | other *** search
/ System Booster / System Booster.iso / Archives / Timing / touch110.lha / touch / makefile next >
Encoding:
Makefile  |  1993-07-29  |  388 b   |  32 lines

  1. # FindFile Makefile
  2. #
  3. # SAS/C version 5.10
  4.  
  5. CFLAGS    = nostkchk nostkext nostdio
  6. LFLAGS    = SD SC
  7.  
  8. LIBS    = LIB lib:sc.lib lib:amiga.lib
  9.  
  10. LC     = SC
  11. LC1FLAGS =
  12. LINK     = SLINK
  13.  
  14. .c.o:
  15.     $(LC) $(LC1FLAGS) $(CFLAGS) $*
  16.  
  17.  
  18. OBJS    = touch.o
  19. HEADERS = touch.h
  20. SRCS    = touch.c
  21.  
  22. all: touch
  23.  
  24. touch: $(OBJS)
  25.        $(LINK) lib:c.o,$(OBJS) TO touch $(LIBS) $(LFLAGS)
  26.  
  27. touch.c:     $(HEADERS)
  28.  
  29. clean:
  30.     delete #?.o
  31.  
  32.